From: Peter Michael Green Date: Fri, 30 Jan 2026 17:37:51 +0000 (+0000) Subject: Disable neon support X-Git-Tag: archive/raspbian/1%0.1.122-1+rpi1~2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com///%22http:/www.example.com/cgi/%22https:/www.github.com/?a=commitdiff_plain;h=48dfbe48cf57030fa75721220178248ae0c1a595;p=babl.git Disable neon support it seems to assume armv8 neon which not all systems have. Gbp-Pq: Name disable-neon.patch --- diff --git a/babl/base/meson.build b/babl/base/meson.build index c0e0683..8562046 100644 --- a/babl/base/meson.build +++ b/babl/base/meson.build @@ -50,14 +50,13 @@ if host_cpu_family == 'x86_64' endif - -if host_cpu_family == 'arm' - - babl_base_arm_neon = static_library('babl_base-arm-neon', - babl_base_sources, - include_directories: [rootInclude, bablInclude], - dependencies: [math, lcms, log], - c_args: common_c_flags + arm_neon_flags - ) - -endif +#if host_cpu_family == 'arm' +# +# babl_base_arm_neon = static_library('babl_base-arm-neon', +# babl_base_sources, +# include_directories: [rootInclude, bablInclude], +# dependencies: [math, lcms, log], +# c_args: common_c_flags + arm_neon_flags +# ) +# +#endif diff --git a/babl/meson.build b/babl/meson.build index e3129d3..fc49411 100644 --- a/babl/meson.build +++ b/babl/meson.build @@ -128,7 +128,7 @@ babl_includes = [rootInclude, bablBaseInclude] if host_cpu_family == 'x86_64' simd_extra = [babl_base_x86_64_v2, babl_base_x86_64_v3, babl_base_x86_64_v4] elif host_cpu_family == 'arm' - simd_extra = [babl_base_arm_neon] + simd_extra = [] else simd_extra = [] endif diff --git a/meson.build b/meson.build index 576762c..2952765 100644 --- a/meson.build +++ b/meson.build @@ -94,8 +94,8 @@ elif host_cpu_family == 'ppc64' conf.set10('ARCH_PPC', true) conf.set10('ARCH_PPC64', true) elif host_cpu_family == 'arm' - have_arm = true - conf.set10('ARCH_ARM', true) + #have_arm = true + #conf.set10('ARCH_ARM', true) elif host_cpu_family == 'aarch64' have_aarch64 = true conf.set10('ARCH_AARCH64', true)